iT邦幫忙

DAY 14
1

C# 程式學習系列 第 14

C# 在主控台應用程式顯示 MessageBox

c#
  • 分享至 

  • xImage
  •  

在主控台應用程式顯示 MessageBox
一般的 Windows Forms 應用程式,可以很容易的使用 MessageBox,但假如想要在主控台應用程式,使用 MessageBox 該如何處理。
其實 MessageBox,組件是來自 System.Windows.Forms.dll,所以我們只要加入 System.Windows.Forms.dll 就可以了
先開啟新專案,在方案總管中,方案下的參考,滑鼠右鍵,點選加入參考(R)
選擇 System.Windows.Forms 後,按下確認,之後就可以撰寫程式使用 MessageBox

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            MessageBox.Show("Show Message");
        }
    }
}

上一篇
C# TextBox 如何自動捲動到底部
下一篇
C# 使用 SqlException
系列文
C# 程式學習30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言